ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / DXUtil Class / Read Method / Read<T>(IntPtr,T[],Int32,Int32) Method
Type of a data to read.
Memory location to read from.
The data write to.
The offset in the array to write to.
The number of T element to read from the memory location.

In This Topic
    Read<T>(IntPtr,T[],Int32,Int32) Method
    In This Topic
    Reads the specified array T[] data from a memory location.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Read(Of T As {New, Struct})( _
       ByVal source As IntPtr, _
       ByVal data() As T, _
       ByVal offset As Integer, _
       ByVal count As Integer _
    ) As IntPtr
    public static IntPtr Read<T>( 
       IntPtr source,
       T[] data,
       int offset,
       int count
    )
    where T: new(), struct

    Parameters

    source
    Memory location to read from.
    data
    The data write to.
    offset
    The offset in the array to write to.
    count
    The number of T element to read from the memory location.

    Type Parameters

    T
    Type of a data to read.

    Return Value

    source pointer + sizeof(T) * count.
    See Also